home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / Apple Guide / Engineering / RenoDB Library / RenoData / RenoDataMore.r < prev    next >
Encoding:
Text File  |  1993-11-29  |  2.1 KB  |  87 lines  |  [TEXT/MPS ]

  1. // Copyright ©1992 Apple Computer, Inc. All rights reserved.
  2. // Author: John R. Powers, III
  3. // Date:    20-Oct-92
  4.  
  5. /***********************************************************************
  6.  
  7.     --- Introduction ---
  8.  
  9.     This file, RenoDataMore.r, contains header information that must
  10.     be included at the beginning of content files Rez-ed after RenoData.r.
  11.     Any override of the default resources must be done
  12.     in RenoData.r.  The default resources in RenoData.r are:
  13.  
  14.         Flag __VERS__
  15.             'vers'
  16.         Flag __APPLOGO__
  17.             include of "ArtApp.rsrc"
  18.         Flag __APPTITLE__
  19.             'STR ', ID=kAppTextId for application title
  20.         Flag __STARTUP__
  21.             kStartupScope, ID=kStartPrefID
  22.         Flag __FORMATS__
  23.             kResFormat for the following ID's
  24.                 kPreFormatFull
  25.                 kPreFormatTag
  26.                 kPreFormatBody
  27.                 kPreFormatCustom
  28.                 kPreFormatScroll
  29.         Flag __PANEL_PROMPTS__
  30.             kResPrompt, ID=130
  31.             'TEXT', ID=131
  32.             'TEXT', ID=132
  33.             'TEXT', ID=133
  34.             'TEXT', ID=134
  35.         No flag (always included)
  36.             kResEvent, ID=kHuhBtnEventId
  37.             kResPreWinBtn, ID=kHuhBtnId
  38.     
  39.  
  40.     --- Usage ---
  41.  
  42.     First compile your regular RenoData.r with its content.
  43.     Identify the output of that compilation with a .rsrc
  44.     file suffix.  If you have any overrides of the
  45.     defaults, they must be done in this compilation.
  46.     The Rez command should look like the following:
  47.     
  48.         Rez RenoData.r -o Content.rsrc -c reno -t help
  49.     
  50.     For each additional content file, include the following
  51.     statement at the beginning of the file:
  52.  
  53.         #include "RenoDataMore.r"
  54.     
  55.     The Rez commands to compile each additional content file
  56.     is as follows:
  57.     
  58.         Rez MoreContent1.r -o MoreContent1.rsrc -c reno -t help
  59.         Rez MoreContent2.r -o MoreContent2.rsrc -c reno -t help
  60.         Rez MoreContent3.r -o MoreContent3.rsrc -c reno -t help
  61.  
  62.  
  63.     --- Revision History ---
  64.     
  65.     20-Jan-92    New, adapted from RenoData.r.
  66.                 
  67. ***********************************************************************/
  68.  
  69. // Resource data used by Reno
  70.  
  71. #ifndef __TYPES.R__
  72.     #include "Types.r"
  73. #endif
  74.  
  75. #ifndef __SYSTYPES.R__
  76.     #include "SysTypes.r"
  77. #endif
  78.  
  79. #ifndef __RENODATA__
  80.     #include "RenoData.h"            // Reno's data constants
  81. #endif
  82.  
  83. #ifndef __RENODATATYPES__
  84.     #include "RenoDataTypes.r"        // Reno's data types
  85. #endif
  86.  
  87.